projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eff2375
)
Remove a use of lexical-let
author
Mark Oteiza
<mvoteiza@udel.edu>
Tue, 27 Dec 2016 16:09:39 +0000
(11:09 -0500)
committer
Mark Oteiza
<mvoteiza@udel.edu>
Tue, 27 Dec 2016 16:11:30 +0000
(11:11 -0500)
* lisp/gnus/message.el (message-completion-function): Just use let,
since the file now uses lexical-binding.
lisp/gnus/message.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/message.el
b/lisp/gnus/message.el
index 5446aa2b8c9d115fbcda27da45a97f059f375418..33c5339e54cee6820d8d7cb0a4dd93ce8fb6526f 100644
(file)
--- a/
lisp/gnus/message.el
+++ b/
lisp/gnus/message.el
@@
-7946,7
+7946,7
@@
regular text mode tabbing command."
(not (mail-abbrev-in-expansion-header-p))))
(setq alist (cdr alist)))
(when (cdar alist)
- (le
xical-le
t ((fun (cdar alist)))
+ (let ((fun (cdar alist)))
;; Even if completion fails, return a non-nil value, so as to avoid
;; falling back to message-tab-body-function.
(lambda () (funcall fun) 'completion-attempted)))))